home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / pascal / grphvga.com / VGAFONTS.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1980-01-01  |  509 b   |  21 lines

  1. (***********************************************************)
  2. (*                                                         *)
  3. (*   VGAFonts Unit  Revision 1.0                           *)
  4. (*   (c) 1991 by Modern Solutions.  All rights reserved.   *)
  5. (*                                                         *)
  6. (***********************************************************)
  7.  
  8. unit VGAFonts;
  9.  
  10. interface
  11.  
  12. procedure Font8X8;
  13.  
  14. implementation
  15.  
  16. {$L FONT8X8.FON}
  17. procedure Font8X8; external;
  18.  
  19. end.
  20.  
  21.